home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / e_to_l / itgraph / msvc15 / dlgline.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-15  |  1002 b   |  42 lines

  1. // dlgline.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CDlgLine dialog
  6.  
  7. class CDlgLine : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CDlgLine(CVBControl *pITGraph, CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CDlgLine)
  15.     enum { IDD = IDD_DLGLINE };
  16.     long    m_ConId;
  17.     long    m_ConData;
  18.     int        m_ConAlign;
  19.     CString    m_ConLabel;
  20.     CString    m_ConFrom;
  21.     CString    m_ConTo;
  22.     int        m_ConArrow;
  23.     int        m_ConWidth;
  24.     //}}AFX_DATA
  25.  
  26. // Implementation
  27. protected:
  28.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29.     CVBControl *m_ITGraph;
  30.     COLORREF m_ConColor;
  31.  
  32.     // Generated message map functions
  33.     //{{AFX_MSG(CDlgLine)
  34.     virtual void OnOK();
  35.     afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  36.     afx_msg void OnRemove();
  37.     afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
  38.     afx_msg void OnConcolor();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.